projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cd0424
)
Switch the URL from which nightlies are downloaded
author
Alex Crichton
<alex@alexcrichton.com>
Thu, 11 Sep 2014 19:56:08 +0000
(12:56 -0700)
committer
Alex Crichton
<alex@alexcrichton.com>
Thu, 11 Sep 2014 20:14:34 +0000
(13:14 -0700)
.travis.install.deps.sh
patch
|
blob
|
history
diff --git
a/.travis.install.deps.sh
b/.travis.install.deps.sh
index 45cdd773dbe6fa37c9781a80c939cf965e6c3b6d..22c5bc35280359362ad3d58c8bd8ce970a670e13 100755
(executable)
--- a/
.travis.install.deps.sh
+++ b/
.travis.install.deps.sh
@@
-46,8
+46,13
@@
if [ -z "${windows}" ]; then
rm -rf rust-nightly-$dst-$target
else
rm -rf *.exe rustc
- curl -O http://static-rust-lang-org.s3.amazonaws.com/dist/rust-nightly-install.exe
- innounp -y -x rust-nightly-install.exe
+ if [ "${BITS}" = "64" ]; then
+ triple=x86_64-w64-mingw32
+ else
+ triple=i686-pc-mingw32
+ fi
+ curl -O http://static-rust-lang-org.s3.amazonaws.com/dist/rust-nightly-$triple.exe
+ innounp -y -x rust-nightly-$triple.exe
mv '{app}' rustc
fi